Hello World

#include <iostream>
int main(){
std::cout<<"The answer to the Ultimate Question of Life, \n"
<< "the Universe, and Everthing is: "
<<std::endl<<6*7<<std::endl;
return 0;
}
iostream 은 표준 I/O 기능을 제공하는 라이브러리
std::        표준 네임스페이스(namespace)
<< 연산자는 std::cout과 같은 출력 스트림에 개체를 전달해 출력 동작을 수행